home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / sed-2_00.lha / sed-2.00 / sed.c < prev    next >
C/C++ Source or Header  |  1993-07-15  |  42KB  |  1,913 lines

  1. /*  GNU SED, a batch stream editor.
  2.     Copyright (C) 1989, 1990, 1991 Free Software Foundation, Inc.
  3.  
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2, or (at your option)
  7.     any later version.
  8.  
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #ifdef __STDC__
  19. #define VOID void
  20. #else
  21. #define VOID char
  22. #endif
  23.  
  24.  
  25. #define _GNU_SOURCE
  26. #include <ctype.h>
  27. #ifndef isblank
  28. #define isblank(c) ((c) == ' ' || (c) == '\t')
  29. #endif
  30. #include <stdio.h>
  31. #include <sys/types.h>
  32. #include "rx.h"
  33. #include "getopt.h"
  34. #if defined(STDC_HEADERS)
  35. #include <stdlib.h>
  36. #endif
  37. #if HAVE_STRING_H || defined(STDC_HEADERS)
  38. #include <string.h>
  39. #ifndef bzero
  40. #define bzero(s, n)    memset ((s), 0, (n))
  41. #endif
  42. #if !defined(STDC_HEADERS)
  43. #include <memory.h>
  44. #endif
  45. #else
  46. #include <strings.h>
  47. #endif
  48.  
  49. #ifdef RX_MEMDBUG
  50. #include <malloc.h>
  51. #endif
  52.  
  53. #ifndef HAVE_BCOPY
  54. #ifdef HAVE_MEMCPY
  55. #define bcopy(FROM,TO,LEN)  memcpy(TO,FROM,LEN)
  56. #else
  57. void
  58. bcopy (from, to, len)
  59.      char *from;
  60.      char *to;
  61.      int len;
  62. {
  63.   if (from < to)
  64.     {
  65.       from += len - 1;
  66.       to += len - 1;
  67.       while (len--)
  68.     *to-- = *from--;
  69.     }
  70.   else
  71.     while (len--)
  72.       *to++ = *from++;
  73. }
  74.  
  75. #endif
  76. #endif
  77.  
  78. char *version_string = "GNU sed version 2.00";
  79.  
  80. /* Struct vector is used to describe a chunk of a compiled sed program.  
  81.  * There is one vector for the main program, and one for each { } pair,
  82.  * and one for the entire program.  For {} blocks, RETURN_[VI] tells where
  83.  * to continue execution after this VECTOR.
  84.  */
  85.  
  86. struct vector
  87. {
  88.   struct sed_cmd *v;
  89.   int v_length;
  90.   int v_allocated;
  91.   struct vector *return_v;
  92.   int return_i;
  93. };
  94.  
  95.  
  96. /* Goto structure is used to hold both GOTO's and labels.  There are two
  97.  * separate lists, one of goto's, called 'jumps', and one of labels, called
  98.  * 'labels'.
  99.  * the V element points to the descriptor for the program-chunk in which the
  100.  * goto was encountered.
  101.  * the v_index element counts which element of the vector actually IS the
  102.  * goto/label.  The first element of the vector is zero.
  103.  * the NAME element is the null-terminated name of the label.
  104.  * next is the next goto/label in the list. 
  105.  */
  106.  
  107. struct sed_label
  108. {
  109.   struct vector *v;
  110.   int v_index;
  111.   char *name;
  112.   struct sed_label *next;
  113. };
  114.  
  115. /* ADDR_TYPE is zero for a null address,
  116.  *  one if addr_number is valid, or
  117.  * two if addr_regex is valid,
  118.  * three, if the address is '$'
  119.  * Other values are undefined.
  120.  */
  121.  
  122. enum addr_types
  123. {
  124.   addr_is_null = 0,
  125.   addr_is_num = 1,
  126.   addr_is_regex = 2,
  127.   addr_is_last = 3
  128. };
  129.  
  130. struct addr
  131. {
  132.   int addr_type;
  133.   struct re_pattern_buffer *addr_regex;
  134.   int addr_number;
  135. };
  136.  
  137.  
  138. /* Aflags:  If the low order bit is set, a1 has been
  139.  * matched; apply this command until a2 matches.
  140.  * If the next bit is set, apply this command to all
  141.  * lines that DON'T match the address(es).
  142.  */
  143.  
  144. #define A1_MATCHED_BIT    01
  145. #define ADDR_BANG_BIT    02
  146.  
  147. struct sed_cmd
  148. {
  149.   struct addr a1, a2;
  150.   int aflags;
  151.   
  152.   char cmd;
  153.   
  154.   union
  155.     {
  156.       /* This structure is used for a, i, and c commands */
  157.       struct
  158.     {
  159.       char *text;
  160.       int text_len;
  161.     }
  162.       cmd_txt;
  163.       
  164.       /* This is used for b and t commands */
  165.       struct sed_cmd *label;
  166.       
  167.       /* This for r and w commands */
  168.       FILE *io_file;
  169.       
  170.       /* This for the hairy s command */
  171.       /* For the flags var:
  172.      low order bit means the 'g' option was given,
  173.      next bit means the 'p' option was given,
  174.      and the next bit means a 'w' option was given,
  175.      and wio_file contains the file to write to. */
  176.       
  177. #define S_GLOBAL_BIT    01
  178. #define S_PRINT_BIT    02
  179. #define S_WRITE_BIT    04
  180. #define S_NUM_BIT    010
  181.       
  182.       struct
  183.     {
  184.       struct re_pattern_buffer *regx;
  185.       char *replacement;
  186.       int replace_length;
  187.       int flags;
  188.       int numb;
  189.       FILE *wio_file;
  190.     }
  191.       cmd_regex;
  192.       
  193.       /* This for the y command */
  194.       unsigned char *translate;
  195.       
  196.       /* For { */
  197.       struct vector *sub;
  198.       
  199.       /* for t and b */
  200.       struct sed_label *jump;
  201.     } x;
  202. };
  203.  
  204. /* Sed operates a line at a time. */
  205. struct line
  206. {
  207.   char *text;            /* Pointer to line allocated by malloc. */
  208.   int length;            /* Length of text. */
  209.   int alloc;            /* Allocated space for text. */
  210. };
  211.  
  212. /* This structure holds information about files opend by the 'r', 'w',
  213.    and 's///w' commands.  In paticular, it holds the FILE pointer to
  214.    use, the file's name, a flag that is non-zero if the file is being
  215.    read instead of written. */
  216.  
  217. #define NUM_FPS    32
  218. struct
  219.   {
  220.     FILE *phile;
  221.     char *name;
  222.     int readit;
  223.   }
  224.  
  225. file_ptrs[NUM_FPS];
  226.  
  227.  
  228. #if defined(__STDC__)
  229. # define P_(s) s
  230. #else
  231. # define P_(s) ()
  232. #endif
  233.  
  234. void close_files ();
  235. void panic P_ ((char *str,...));
  236. char *__fp_name P_ ((FILE * fp));
  237. FILE *ck_fopen P_ ((char *name, char *mode));
  238. void ck_fwrite P_ ((char *ptr, int size, int nmemb, FILE * stream));
  239. void ck_fclose P_ ((FILE * stream));
  240. VOID *ck_malloc P_ ((int size));
  241. VOID *ck_realloc P_ ((VOID * ptr, int size));
  242. char *ck_strdup P_ ((char *str));
  243. VOID *init_buffer P_ ((void));
  244. void flush_buffer P_ ((VOID * bb));
  245. int size_buffer P_ ((VOID * b));
  246. void add_buffer P_ ((VOID * bb, char *p, int n));
  247. void add1_buffer P_ ((VOID * bb, int ch));
  248. char *get_buffer P_ ((VOID * bb));
  249.  
  250. void compile_string P_ ((char *str));
  251. void compile_file P_ ((char *str));
  252. struct vector *compile_program P_ ((struct vector * vector, int));
  253. void bad_prog P_ ((char *why));
  254. int inchar P_ ((void));
  255. void savchar P_ ((int ch));
  256. int compile_address P_ ((struct addr * addr));
  257. char * last_regex_string = 0;
  258. void buffer_regex  P_ ((int slash));
  259. void compile_regex P_ ((void));
  260. struct sed_label *setup_jump P_ ((struct sed_label * list, struct sed_cmd * cmd, struct vector * vec));
  261. FILE *compile_filename P_ ((int readit));
  262. void read_file P_ ((char *name));
  263. void execute_program P_ ((struct vector * vec));
  264. int match_address P_ ((struct addr * addr));
  265. int read_pattern_space P_ ((void));
  266. void append_pattern_space P_ ((void));
  267. void line_copy P_ ((struct line * from, struct line * to));
  268. void line_append P_ ((struct line * from, struct line * to));
  269. void str_append P_ ((struct line * to, char *string, int length));
  270. void usage P_ ((int));
  271.  
  272. extern char *myname;
  273.  
  274. /* If set, don't write out the line unless explictly told to */
  275. int no_default_output = 0;
  276.  
  277. /* Current input line # */
  278. int input_line_number = 0;
  279.  
  280. /* Are we on the last input file? */
  281. int last_input_file = 0;
  282.  
  283. /* Have we hit EOF on the last input file?  This is used to decide if we
  284.    have hit the '$' address yet. */
  285. int input_EOF = 0;
  286.  
  287. /* non-zero if a quit command has been executed. */
  288. int quit_cmd = 0;
  289.  
  290. /* Have we done any replacements lately?  This is used by the 't' command. */
  291. int replaced = 0;
  292.  
  293. /* How many '{'s are we executing at the moment */
  294. int program_depth = 0;
  295.  
  296. /* The complete compiled SED program that we are going to run */
  297. struct vector *the_program = 0;
  298.  
  299. /* information about labels and jumps-to-labels.  This is used to do
  300.    the required backpatching after we have compiled all the scripts. */
  301. struct sed_label *jumps = 0;
  302. struct sed_label *labels = 0;
  303.  
  304. /* The 'current' input line. */
  305. struct line line;
  306.  
  307. /* An input line that's been stored by later use by the program */
  308. struct line hold;
  309.  
  310. /* A 'line' to append to the current line when it comes time to write it out */
  311. struct line append;
  312.  
  313.  
  314. /* When we're reading a script command from a string, 'prog_start' and
  315.    'prog_end' point to the beginning and end of the string.  This
  316.    would allow us to compile script strings that contain nulls, except
  317.    that script strings are only read from the command line, which is
  318.    null-terminated */
  319. unsigned char *prog_start;
  320. unsigned char *prog_end;
  321.  
  322. /* When we're reading a script command from a string, 'prog_cur' points
  323.    to the current character in the string */
  324. unsigned char *prog_cur;
  325.  
  326. /* This is the name of the current script file.
  327.    It is used for error messages. */
  328. char *prog_name;
  329.  
  330. /* This is the current script file.  If it is zero, we are reading
  331.    from a string stored in 'prog_start' instead.  If both 'prog_file'
  332.    and 'prog_start' are zero, we're in trouble! */
  333. FILE *prog_file;
  334.  
  335. /* this is the number of the current script line that we're compiling.  It is
  336.    used to give out useful and informative error messages. */
  337. int prog_line = 1;
  338.  
  339. /* This is the file pointer that we're currently reading data from.  It may
  340.    be stdin */
  341. FILE *input_file;
  342.  
  343. /* If this variable is non-zero at exit, one or more of the input
  344.    files couldn't be opened. */
  345.  
  346. int bad_input = 0;
  347.  
  348. /* 'an empty regular expression is equivalent to the last regular
  349.    expression read' so we have to keep track of the last regex used.
  350.    Here's where we store a pointer to it (it is only malloc()'d once) */
  351. struct re_pattern_buffer *last_regex;
  352.  
  353. /* Various error messages we may want to print */
  354. static char ONE_ADDR[] = "Command only uses one address";
  355. static char NO_ADDR[] = "Command doesn't take any addresses";
  356. static char LINE_JUNK[] = "Extra characters after command";
  357. static char BAD_EOF[] = "Unexpected End-of-file";
  358. static char NO_REGEX[] = "No previous regular expression";
  359. static char NO_COMMAND[] = "Missing command";
  360.  
  361. static struct option longopts[] =
  362. {
  363.   {"expression", 1, NULL, 'e'},
  364.   {"file", 1, NULL, 'f'},
  365.   {"quiet", 0, NULL, 'n'},
  366.   {"silent", 0, NULL, 'n'},
  367.   {"version", 0, NULL, 'V'},
  368.   {"help", 0, NULL, 'h'},
  369.   {NULL, 0, NULL, 0}
  370. };
  371.  
  372. void
  373. main (argc, argv)
  374.      int argc;
  375.      char **argv;
  376. {
  377.   int opt;
  378.   char *e_strings = NULL;
  379.   int compiled = 0;
  380.   struct sed_label *go, *lbl;
  381.  
  382.   /* see regex.h */
  383.   re_set_syntax (RE_SYNTAX_POSIX_BASIC);
  384.   rx_cache_bound = 10000;    /* Consume memory rampantly. */
  385.  
  386.   myname = argv[0];
  387.   while ((opt = getopt_long (argc, argv, "hne:f:V", longopts, (int *) 0))
  388.      != EOF)
  389.     {
  390.       switch (opt)
  391.     {
  392.     case 'n':
  393.       no_default_output = 1;
  394.       break;
  395.     case 'e':
  396.       if (e_strings == NULL)
  397.         {
  398.           e_strings = ck_malloc (strlen (optarg) + 2);
  399.           strcpy (e_strings, optarg);
  400.         }
  401.       else
  402.         {
  403.           e_strings = ck_realloc (e_strings, strlen (e_strings) + strlen (optarg) + 2);
  404.           strcat (e_strings, optarg);
  405.         }
  406.       strcat (e_strings, "\n");
  407.       compiled = 1;
  408.       break;
  409.     case 'f':
  410.       compile_file (optarg);
  411.       compiled = 1;
  412.       break;
  413.     case 'V':
  414.       fprintf (stderr, "%s\n", version_string);
  415.       exit (0);
  416.       break;
  417.     case 'h':
  418.       usage (0);
  419.       break;
  420.     default:
  421.       usage (4);
  422.       break;
  423.     }
  424.     }
  425.   if (e_strings)
  426.     {
  427.       compile_string (e_strings);
  428.       free (e_strings);
  429.     }
  430.   if (!compiled)
  431.     {
  432.       if (optind == argc)
  433.     usage (4);
  434.       compile_string (argv[optind++]);
  435.     }
  436.  
  437.   for (go = jumps; go; go = go->next)
  438.     {
  439.       for (lbl = labels; lbl; lbl = lbl->next)
  440.     if (!strcmp (lbl->name, go->name))
  441.       break;
  442.       if (*go->name && !lbl)
  443.     panic ("Can't find label for jump to '%s'", go->name);
  444.       go->v->v[go->v_index].x.jump = lbl;
  445.     }
  446.  
  447.   line.length = 0;
  448.   line.alloc = 50;
  449.   line.text = ck_malloc (50);
  450.  
  451.   append.length = 0;
  452.   append.alloc = 50;
  453.   append.text = ck_malloc (50);
  454.  
  455.   hold.length = 1;
  456.   hold.alloc = 50;
  457.   hold.text = ck_malloc (50);
  458.   hold.text[0] = '\n';
  459.  
  460.   if (argc <= optind)
  461.     {
  462.       last_input_file++;
  463.       read_file ("-");
  464.     }
  465.   else
  466.     while (optind < argc)
  467.       {
  468.     if (optind == argc - 1)
  469.       last_input_file++;
  470.     read_file (argv[optind]);
  471.     optind++;
  472.     if (quit_cmd)
  473.       break;
  474.       }
  475.   close_files ();
  476.   if (bad_input)
  477.     exit (2);
  478.   exit (0);
  479. }
  480.  
  481. void
  482. close_files ()
  483. {
  484.   int nf;
  485.  
  486.   for (nf = 0; nf < NUM_FPS; nf++)
  487.     {
  488.       if (file_ptrs[nf].phile)
  489.     fclose (file_ptrs[nf].phile);
  490.     }
  491. }
  492.  
  493. /* 'str' is a string (from the command line) that contains a sed command.
  494.    Compile the command, and add it to the end of 'the_program' */
  495. void
  496. compile_string (str)
  497.      char *str;
  498. {
  499.   prog_file = 0;
  500.   prog_line = 0;
  501.   prog_start = prog_cur = (unsigned char *)str;
  502.   prog_end = (unsigned char *)str + strlen (str);
  503.   the_program = compile_program (the_program, prog_line);
  504. }
  505.  
  506. /* 'str' is the name of a file containing sed commands.  Read them in
  507.    and add them to the end of 'the_program' */
  508. void
  509. compile_file (str)
  510.      char *str;
  511. {
  512.   int ch;
  513.  
  514.   prog_start = prog_cur = prog_end = 0;
  515.   prog_name = str;
  516.   prog_line = 1;
  517.   if (str[0] == '-' && str[1] == '\0')
  518.     prog_file = stdin;
  519.   else
  520.     prog_file = ck_fopen (str, "r");
  521.   ch = getc (prog_file);
  522.   if (ch == '#')
  523.     {
  524.       ch = getc (prog_file);
  525.       if (ch == 'n')
  526.     no_default_output++;
  527.       while (ch != EOF && ch != '\n')
  528.     {
  529.       ch = getc (prog_file);
  530.       if (ch == '\\')
  531.         ch = getc (prog_file);
  532.     }
  533.       ++prog_line;
  534.     }
  535.   else if (ch != EOF)
  536.     ungetc (ch, prog_file);
  537.   the_program = compile_program (the_program, prog_line);
  538. }
  539.  
  540. #define MORE_CMDS 40
  541.  
  542. /* Read a program (or a subprogram within '{' '}' pairs) in and store
  543.    the compiled form in *'vector'  Return a pointer to the new vector.  */
  544. struct vector *
  545. compile_program (vector, open_line)
  546.      struct vector *vector;
  547.      int open_line;
  548. {
  549.   struct sed_cmd *cur_cmd;
  550.   int ch = 0;
  551.   int pch;
  552.   int slash;
  553.   VOID *b;
  554.   unsigned char *string;
  555.   int num;
  556.  
  557.   if (!vector)
  558.     {
  559.       vector = (struct vector *) ck_malloc (sizeof (struct vector));
  560.       vector->v = (struct sed_cmd *) ck_malloc (MORE_CMDS * sizeof (struct sed_cmd));
  561.       vector->v_allocated = MORE_CMDS;
  562.       vector->v_length = 0;
  563.       vector->return_v = 0;
  564.       vector->return_i = 0;
  565.     }
  566.   for (;;)
  567.     {
  568.     skip_comment:
  569.       do
  570.     {
  571.       pch = ch;
  572.       ch = inchar ();
  573.       if ((pch == '\\') && (ch == '\n'))
  574.         ch = inchar ();
  575.     }
  576.       while (ch != EOF && (isblank (ch) || ch == '\n' || ch == ';'));
  577.       if (ch == EOF)
  578.     break;
  579.       savchar (ch);
  580.  
  581.       if (vector->v_length == vector->v_allocated)
  582.     {
  583.       vector->v = ((struct sed_cmd *)
  584.                ck_realloc ((VOID *) vector->v,
  585.                    ((vector->v_length + MORE_CMDS)
  586.                     * sizeof (struct sed_cmd))));
  587.       vector->v_allocated += MORE_CMDS;
  588.     }
  589.       cur_cmd = vector->v + vector->v_length;
  590.       vector->v_length++;
  591.  
  592.       cur_cmd->a1.addr_type = 0;
  593.       cur_cmd->a2.addr_type = 0;
  594.       cur_cmd->aflags = 0;
  595.       cur_cmd->cmd = 0;
  596.  
  597.       if (compile_address (&(cur_cmd->a1)))
  598.     {
  599.       ch = inchar ();
  600.       if (ch == ',')
  601.         {
  602.           do
  603.         ch = inchar ();
  604.           while (ch != EOF && isblank (ch));
  605.           savchar (ch);
  606.           if (compile_address (&(cur_cmd->a2)))
  607.         ;
  608.           else
  609.         bad_prog ("Unexpected ','");
  610.         }
  611.       else
  612.         savchar (ch);
  613.     }
  614.       if (cur_cmd->a1.addr_type == addr_is_num
  615.       && cur_cmd->a2.addr_type == addr_is_num
  616.       && cur_cmd->a2.addr_number < cur_cmd->a1.addr_number)
  617.     cur_cmd->a2.addr_number = cur_cmd->a1.addr_number;
  618.  
  619.       ch = inchar ();
  620.       if (ch == EOF)
  621.     bad_prog (NO_COMMAND);
  622.     new_cmd:
  623.       switch (ch)
  624.     {
  625.     case '#':
  626.       if (cur_cmd->a1.addr_type != 0)
  627.         bad_prog (NO_ADDR);
  628.       do
  629.         {
  630.           ch = inchar ();
  631.           if (ch == '\\')
  632.         ch = inchar ();
  633.         }
  634.       while (ch != EOF && ch != '\n');
  635.       vector->v_length--;
  636.       goto skip_comment;
  637.     case '!':
  638.       if (cur_cmd->aflags & ADDR_BANG_BIT)
  639.         bad_prog ("Multiple '!'s");
  640.       cur_cmd->aflags |= ADDR_BANG_BIT;
  641.       do
  642.         ch = inchar ();
  643.       while (ch != EOF && isblank (ch));
  644.       if (ch == EOF)
  645.         bad_prog (NO_COMMAND);
  646. #if 0
  647.       savchar (ch);
  648. #endif
  649.       goto new_cmd;
  650.     case 'a':
  651.     case 'i':
  652.       if (cur_cmd->a2.addr_type != 0)
  653.         bad_prog (ONE_ADDR);
  654.       /* Fall Through */
  655.     case 'c':
  656.       cur_cmd->cmd = ch;
  657.       if (inchar () != '\\' || inchar () != '\n')
  658.         bad_prog (LINE_JUNK);
  659.       b = init_buffer ();
  660.       while ((ch = inchar ()) != EOF && ch != '\n')
  661.         {
  662.           if (ch == '\\')
  663.         ch = inchar ();
  664.           add1_buffer (b, ch);
  665.         }
  666.       if (ch != EOF)
  667.         add1_buffer (b, ch);
  668.       num = size_buffer (b);
  669.       string = (unsigned char *) ck_malloc (num);
  670.       bcopy (get_buffer (b), string, num);
  671.       flush_buffer (b);
  672.       cur_cmd->x.cmd_txt.text_len = num;
  673.       cur_cmd->x.cmd_txt.text = (char *) string;
  674.       break;
  675.     case '{':
  676.       cur_cmd->cmd = ch;
  677.       program_depth++;
  678. #if 0
  679.       while ((ch = inchar ()) != EOF && ch != '\n')
  680.         if (!isblank (ch))
  681.           bad_prog (LINE_JUNK);
  682. #endif
  683.       cur_cmd->x.sub = compile_program ((struct vector *) 0, prog_line);
  684.       /* FOO JF is this the right thing to do?
  685.                almost.  don't forget a return addr.  -t */
  686.       cur_cmd->x.sub->return_v = vector;
  687.       cur_cmd->x.sub->return_i = vector->v_length - 1;
  688.       break;
  689.     case '}':
  690.       if (!program_depth)
  691.         bad_prog ("Unexpected '}'");
  692.       --program_depth;
  693.       /* a return insn for subprograms -t */
  694.       cur_cmd->cmd = ch;
  695.       if (cur_cmd->a1.addr_type != 0)
  696.         bad_prog ("} doesn't want any addresses");
  697.       while ((ch = inchar ()) != EOF && ch != '\n' && ch != ';')
  698.         if (!isblank (ch))
  699.           bad_prog (LINE_JUNK);
  700.       return vector;
  701.     case ':':
  702.       cur_cmd->cmd = ch;
  703.       if (cur_cmd->a1.addr_type != 0)
  704.         bad_prog (": doesn't want any addresses");
  705.       labels = setup_jump (labels, cur_cmd, vector);
  706.       break;
  707.     case 'b':
  708.     case 't':
  709.       cur_cmd->cmd = ch;
  710.       jumps = setup_jump (jumps, cur_cmd, vector);
  711.       break;
  712.     case 'q':
  713.     case '=':
  714.       if (cur_cmd->a2.addr_type)
  715.         bad_prog (ONE_ADDR);
  716.       /* Fall Through */
  717.     case 'd':
  718.     case 'D':
  719.     case 'g':
  720.     case 'G':
  721.     case 'h':
  722.     case 'H':
  723.     case 'l':
  724.     case 'n':
  725.     case 'N':
  726.     case 'p':
  727.     case 'P':
  728.     case 'x':
  729.       cur_cmd->cmd = ch;
  730.       do
  731.         ch = inchar ();
  732.       while (ch != EOF && isblank (ch) && ch != '\n' && ch != ';');
  733.       if (ch != '\n' && ch != ';' && ch != EOF)
  734.         bad_prog (LINE_JUNK);
  735.       break;
  736.  
  737.     case 'r':
  738.       if (cur_cmd->a2.addr_type != 0)
  739.         bad_prog (ONE_ADDR);
  740.       /* FALL THROUGH */
  741.     case 'w':
  742.       cur_cmd->cmd = ch;
  743.       cur_cmd->x.io_file = compile_filename (ch == 'r');
  744.       break;
  745.  
  746.     case 's':
  747.       cur_cmd->cmd = ch;
  748.       slash = inchar ();
  749.       buffer_regex (slash);
  750.       compile_regex ();
  751.  
  752.       cur_cmd->x.cmd_regex.regx = last_regex;
  753.  
  754.       b = init_buffer ();
  755.       while (((ch = inchar ()) != EOF) && (ch != slash) && (ch != '\n'))
  756.         {
  757.           if (ch == '\\')
  758.         {
  759.           int ci;
  760.  
  761.           ci = inchar ();
  762.           if (ci != EOF)
  763.             {
  764.               if (ci != '\n')
  765.             add1_buffer (b, ch);
  766.               add1_buffer (b, ci);
  767.             }
  768.         }
  769.           else
  770.         add1_buffer (b, ch);
  771.         }
  772.       if (ch != slash)
  773.         {
  774.           if (ch == '\n' && prog_line > 1)
  775.         --prog_line;
  776.           bad_prog ("Unterminated `s' command");
  777.         }
  778.       cur_cmd->x.cmd_regex.replace_length = size_buffer (b);
  779.       cur_cmd->x.cmd_regex.replacement = ck_malloc (cur_cmd->x.cmd_regex.replace_length);
  780.       bcopy (get_buffer (b), cur_cmd->x.cmd_regex.replacement, cur_cmd->x.cmd_regex.replace_length);
  781.       flush_buffer (b);
  782.  
  783.       cur_cmd->x.cmd_regex.flags = 0;
  784.       cur_cmd->x.cmd_regex.numb = 0;
  785.  
  786.       if (ch == EOF)
  787.         break;
  788.       do
  789.         {
  790.           ch = inchar ();
  791.           switch (ch)
  792.         {
  793.         case 'p':
  794.           if (cur_cmd->x.cmd_regex.flags & S_PRINT_BIT)
  795.             bad_prog ("multiple 'p' options to 's' command");
  796.           cur_cmd->x.cmd_regex.flags |= S_PRINT_BIT;
  797.           break;
  798.         case 'g':
  799.           if (cur_cmd->x.cmd_regex.flags & S_NUM_BIT)
  800.             cur_cmd->x.cmd_regex.flags &= ~S_NUM_BIT;
  801.           if (cur_cmd->x.cmd_regex.flags & S_GLOBAL_BIT)
  802.             bad_prog ("multiple 'g' options to 's' command");
  803.           cur_cmd->x.cmd_regex.flags |= S_GLOBAL_BIT;
  804.           break;
  805.         case 'w':
  806.           cur_cmd->x.cmd_regex.flags |= S_WRITE_BIT;
  807.           cur_cmd->x.cmd_regex.wio_file = compile_filename (0);
  808.           ch = '\n';
  809.           break;
  810.         case '0':
  811.         case '1':
  812.         case '2':
  813.         case '3':
  814.         case '4':
  815.         case '5':
  816.         case '6':
  817.         case '7':
  818.         case '8':
  819.         case '9':
  820.           if (cur_cmd->x.cmd_regex.flags & S_NUM_BIT)
  821.             bad_prog ("multiple number options to 's' command");
  822.           if ((cur_cmd->x.cmd_regex.flags & S_GLOBAL_BIT) == 0)
  823.             cur_cmd->x.cmd_regex.flags |= S_NUM_BIT;
  824.           num = 0;
  825.           while (isdigit (ch))
  826.             {
  827.               num = num * 10 + ch - '0';
  828.               ch = inchar ();
  829.             }
  830.           savchar (ch);
  831.           cur_cmd->x.cmd_regex.numb = num;
  832.           break;
  833.         case '\n':
  834.         case ';':
  835.         case EOF:
  836.           break;
  837.         default:
  838.           bad_prog ("Unknown option to 's'");
  839.           break;
  840.         }
  841.         }
  842.       while (ch != EOF && ch != '\n' && ch != ';');
  843.       if (ch == EOF)
  844.         break;
  845.       break;
  846.  
  847.     case 'y':
  848.       cur_cmd->cmd = ch;
  849.       string = (unsigned char *) ck_malloc (256);
  850.       for (num = 0; num < 256; num++)
  851.         string[num] = num;
  852.       b = init_buffer ();
  853.       slash = inchar ();
  854.       while ((ch = inchar ()) != EOF && ch != slash)
  855.         add1_buffer (b, ch);
  856.       cur_cmd->x.translate = string;
  857.       string = (unsigned char *) get_buffer (b);
  858.       for (num = size_buffer (b); num; --num)
  859.         {
  860.           ch = inchar ();
  861.           if (ch == EOF)
  862.         bad_prog (BAD_EOF);
  863.           if (ch == slash)
  864.         bad_prog ("strings for y command are different lengths");
  865.           cur_cmd->x.translate[*string++] = ch;
  866.         }
  867.       flush_buffer (b);
  868.       if (inchar () != slash || ((ch = inchar ()) != EOF && ch != '\n' && ch != ';'))
  869.         bad_prog (LINE_JUNK);
  870.       break;
  871.  
  872.     default:
  873.       bad_prog ("Unknown command");
  874.     }
  875.     }
  876.   if (program_depth)
  877.     {
  878.       prog_line = open_line;
  879.       bad_prog ("Unmatched `{'");
  880.     }
  881.   return vector;
  882. }
  883.  
  884. /* Complain about a programming error and exit. */
  885. void
  886. bad_prog (why)
  887.      char *why;
  888. {
  889.   if (prog_line > 0)
  890.     fprintf (stderr, "%s: file %s line %d: %s\n",
  891.          myname, prog_name, prog_line, why);
  892.   else
  893.     fprintf (stderr, "%s: %s\n", myname, why);
  894.   exit (1);
  895. }
  896.  
  897. /* Read the next character from the program.  Return EOF if there isn't
  898.    anything to read.  Keep prog_line up to date, so error messages can
  899.    be meaningful. */
  900. int
  901. inchar ()
  902. {
  903.   int ch;
  904.   if (prog_file)
  905.     {
  906.       if (feof (prog_file))
  907.     return EOF;
  908.       else
  909.     ch = getc (prog_file);
  910.     }
  911.   else
  912.     {
  913.       if (!prog_cur)
  914.     return EOF;
  915.       else if (prog_cur == prog_end)
  916.     {
  917.       ch = EOF;
  918.       prog_cur = 0;
  919.     }
  920.       else
  921.     ch = *prog_cur++;
  922.     }
  923.   if ((ch == '\n') && prog_line)
  924.     prog_line++;
  925.   return ch;
  926. }
  927.  
  928. /* unget 'ch' so the next call to inchar will return it.  'ch' must not be
  929.    EOF or anything nasty like that. */
  930. void
  931. savchar (ch)
  932.      int ch;
  933. {
  934.   if (ch == EOF)
  935.     return;
  936.   if (ch == '\n' && prog_line > 1)
  937.     --prog_line;
  938.   if (prog_file)
  939.     ungetc (ch, prog_file);
  940.   else
  941.     *--prog_cur = ch;
  942. }
  943.  
  944.  
  945. /* Try to read an address for a sed command.  If it succeeeds,
  946.    return non-zero and store the resulting address in *'addr'.
  947.    If the input doesn't look like an address read nothing
  948.    and return zero. */
  949. int
  950. compile_address (addr)
  951.      struct addr *addr;
  952. {
  953.   int ch;
  954.   int num;
  955.  
  956.   ch = inchar ();
  957.  
  958.   if (isdigit (ch))
  959.     {
  960.       num = ch - '0';
  961.       while ((ch = inchar ()) != EOF && isdigit (ch))
  962.     num = num * 10 + ch - '0';
  963.       while (ch != EOF && isblank (ch))
  964.     ch = inchar ();
  965.       savchar (ch);
  966.       addr->addr_type = addr_is_num;
  967.       addr->addr_number = num;
  968.       return 1;
  969.     }
  970.   else if (ch == '/' || ch == '\\')
  971.     {
  972.       addr->addr_type = addr_is_regex;
  973.       if (ch == '\\')
  974.     ch = inchar ();
  975.       buffer_regex (ch);
  976.       compile_regex ();
  977.       addr->addr_regex = last_regex;
  978.       do
  979.     ch = inchar ();
  980.       while (ch != EOF && isblank (ch));
  981.       savchar (ch);
  982.       return 1;
  983.     }
  984.   else if (ch == '$')
  985.     {
  986.       addr->addr_type = addr_is_last;
  987.       do
  988.     ch = inchar ();
  989.       while (ch != EOF && isblank (ch));
  990.       savchar (ch);
  991.       return 1;
  992.     }
  993.   else
  994.     savchar (ch);
  995.   return 0;
  996. }
  997.  
  998. void
  999. buffer_regex (slash)
  1000.      int slash;
  1001. {
  1002.   VOID *b;
  1003.   int ch;
  1004.   int char_class_pos = -1;
  1005.  
  1006.   b = init_buffer ();
  1007.   while ((ch = inchar ()) != EOF && (ch != slash || (char_class_pos >= 0)))
  1008.     {
  1009.       if (ch == '^')
  1010.     {
  1011.       if (size_buffer (b) == 0)
  1012.         {
  1013.           add1_buffer (b, '\\');
  1014.           add1_buffer (b, '`');
  1015.         }
  1016.       else
  1017.         add1_buffer (b, ch);
  1018.       continue;
  1019.     }
  1020.       else if (ch == '$')
  1021.     {
  1022.       ch = inchar ();
  1023.       savchar (ch);
  1024.       if (ch == slash)
  1025.         {
  1026.           add1_buffer (b, '\\');
  1027.           add1_buffer (b, '\'');
  1028.         }
  1029.       else
  1030.         add1_buffer (b, '$');
  1031.       continue;
  1032.     }
  1033.       else if (ch == '[')
  1034.     {
  1035.       if (char_class_pos < 0)
  1036.         char_class_pos = size_buffer (b);
  1037.       add1_buffer (b, ch);
  1038.       continue;
  1039.     }
  1040.       else if (ch == ']')
  1041.     {
  1042.       add1_buffer (b, ch);
  1043.       {
  1044.         char * regexp = get_buffer (b);
  1045.         int pos = size_buffer (b) - 1;
  1046.         if (!(   (char_class_pos >= 0)
  1047.           && (   (pos == char_class_pos + 1)
  1048.               || (   (pos == char_class_pos + 2)
  1049.               && (regexp[char_class_pos + 1] == '^')))))
  1050.           char_class_pos = -1;
  1051.         continue;
  1052.       }
  1053.     }
  1054.       else if (ch != '\\' || (char_class_pos >= 0))
  1055.     {
  1056.       add1_buffer (b, ch);
  1057.       continue;
  1058.     }
  1059.       ch = inchar ();
  1060.       switch (ch)
  1061.     {
  1062.     case 'n':
  1063.       add1_buffer (b, '\n');
  1064.       break;
  1065. #if 0
  1066.     case 'b':
  1067.       add1_buffer (b, '\b');
  1068.       break;
  1069.     case 'f':
  1070.       add1_buffer (b, '\f');
  1071.       break;
  1072.     case 'r':
  1073.       add1_buffer (b, '\r');
  1074.       break;
  1075.     case 't':
  1076.       add1_buffer (b, '\t');
  1077.       break;
  1078. #endif /* 0 */
  1079.     case EOF:
  1080.       break;
  1081.     default:
  1082.       add1_buffer (b, '\\');
  1083.       add1_buffer (b, ch);
  1084.       break;
  1085.     }
  1086.     }
  1087.   if (ch == EOF)
  1088.     bad_prog (BAD_EOF);
  1089.   if (size_buffer (b))
  1090.     {
  1091.       if (last_regex_string)
  1092.     last_regex_string = (char *)ck_realloc (last_regex_string,
  1093.                         size_buffer (b) + 1);
  1094.       else
  1095.     last_regex_string = (char *)ck_malloc (size_buffer (b) + 1);
  1096.       bcopy (get_buffer (b), last_regex_string, size_buffer (b));
  1097.       last_regex_string [size_buffer (b)] = 0;
  1098.     }
  1099.   else if (!last_regex)
  1100.     bad_prog (NO_REGEX);
  1101.   flush_buffer (b);
  1102. }
  1103.  
  1104. void
  1105. compile_regex ()
  1106. {
  1107.   
  1108.   last_regex = ((struct re_pattern_buffer *)
  1109.         ck_malloc (sizeof (struct re_pattern_buffer)));
  1110.   bzero (last_regex, sizeof (*last_regex));
  1111.   last_regex->fastmap = ck_malloc (256);
  1112.   re_compile_pattern (last_regex_string,
  1113.               strlen (last_regex_string), last_regex);
  1114. }
  1115.  
  1116. /* Store a label (or label reference) created by a ':', 'b', or 't'
  1117.    comand so that the jump to/from the lable can be backpatched after
  1118.    compilation is complete */
  1119. struct sed_label *
  1120. setup_jump (list, cmd, vec)
  1121.      struct sed_label *list;
  1122.      struct sed_cmd *cmd;
  1123.      struct vector *vec;
  1124. {
  1125.   struct sed_label *tmp;
  1126.   VOID *b;
  1127.   int ch;
  1128.  
  1129.   b = init_buffer ();
  1130.   while ((ch = inchar ()) != EOF && isblank (ch))
  1131.     ;
  1132.   /* Possible non posixicity. */
  1133.   while (ch != EOF && ch != '\n' && (!isblank (ch)) && ch != ';' && ch != '}')
  1134.     {
  1135.       add1_buffer (b, ch);
  1136.       ch = inchar ();
  1137.     }
  1138.   savchar (ch);
  1139.   add1_buffer (b, '\0');
  1140.   tmp = (struct sed_label *) ck_malloc (sizeof (struct sed_label));
  1141.   tmp->v = vec;
  1142.   tmp->v_index = cmd - vec->v;
  1143.   tmp->name = ck_strdup (get_buffer (b));
  1144.   tmp->next = list;
  1145.   flush_buffer (b);
  1146.   return tmp;
  1147. }
  1148.  
  1149. /* read in a filename for a 'r', 'w', or 's///w' command, and
  1150.    update the internal structure about files.  The file is
  1151.    opened if it isn't already open. */
  1152. FILE *
  1153. compile_filename (readit)
  1154.      int readit;
  1155. {
  1156.   char *file_name;
  1157.   int n;
  1158.   VOID *b;
  1159.   int ch;
  1160.  
  1161.   if (inchar () != ' ')
  1162.     bad_prog ("missing ' ' before filename");
  1163.   b = init_buffer ();
  1164.   while ((ch = inchar ()) != EOF && ch != '\n')
  1165.     add1_buffer (b, ch);
  1166.   add1_buffer (b, '\0');
  1167.   file_name = get_buffer (b);
  1168.   for (n = 0; n < NUM_FPS; n++)
  1169.     {
  1170.       if (!file_ptrs[n].name)
  1171.     break;
  1172.       if (!strcmp (file_ptrs[n].name, file_name))
  1173.     {
  1174.       if (file_ptrs[n].readit != readit)
  1175.         bad_prog ("Can't open file for both reading and writing");
  1176.       flush_buffer (b);
  1177.       return file_ptrs[n].phile;
  1178.     }
  1179.     }
  1180.   if (n < NUM_FPS)
  1181.     {
  1182.       file_ptrs[n].name = ck_strdup (file_name);
  1183.       file_ptrs[n].readit = readit;
  1184.       if (!readit)
  1185.     file_ptrs[n].phile = ck_fopen (file_name, "w");
  1186.       else
  1187.     {
  1188.       file_ptrs[n].phile = ck_fopen (file_name, "r");
  1189.     }
  1190.       flush_buffer (b);
  1191.       return file_ptrs[n].phile;
  1192.     }
  1193.   else
  1194.     {
  1195.       bad_prog ("Hopelessely evil compiled in limit on number of open files.  re-compile sed");
  1196.       return 0;
  1197.     }
  1198. }
  1199.  
  1200. /* Read a file and apply the compiled script to it. */
  1201. void
  1202. read_file (name)
  1203.      char *name;
  1204. {
  1205.   if (*name == '-' && name[1] == '\0')
  1206.     input_file = stdin;
  1207.   else
  1208.     {
  1209.       input_file = fopen (name, "r");
  1210.       if (input_file == 0)
  1211.     {
  1212.       extern int errno;
  1213.       extern char *sys_errlist[];
  1214.       extern int sys_nerr;
  1215.  
  1216.       char *ptr;
  1217.  
  1218.       ptr = ((errno >= 0 && errno < sys_nerr)
  1219.          ? sys_errlist[errno] : "Unknown error code");
  1220.       bad_input++;
  1221.       fprintf (stderr, "%s: can't read %s: %s\n", myname, name, ptr);
  1222.       return;
  1223.     }
  1224.     }
  1225.   
  1226.   while (read_pattern_space ())
  1227.     {
  1228.       execute_program (the_program);
  1229.       if (!no_default_output)
  1230.     ck_fwrite (line.text, 1, line.length, stdout);
  1231.       if (append.length)
  1232.     {
  1233.       ck_fwrite (append.text, 1, append.length, stdout);
  1234.       append.length = 0;
  1235.     }
  1236.       if (quit_cmd)
  1237.     break;
  1238.     }
  1239.   ck_fclose (input_file);
  1240. }
  1241.  
  1242. static char *
  1243. eol_pos (str, len)
  1244.      char *str;
  1245.      int len;
  1246. {
  1247.   while (len--)
  1248.     if (*str++ == '\n')
  1249.       return --str;
  1250.   return --str;
  1251. }
  1252.  
  1253. static void
  1254. chr_copy (dest, src, len)
  1255.      char *dest;
  1256.      char *src;
  1257.      int len;
  1258. {
  1259.   while (len--)
  1260.     *dest++ = *src++;
  1261. }
  1262.  
  1263. /* Execute the program 'vec' on the current input line. */
  1264. static struct re_registers regs =
  1265. {0, 0, 0};
  1266.  
  1267. void
  1268. execute_program (vec)
  1269.      struct vector *vec;
  1270. {
  1271.   struct sed_cmd *cur_cmd;
  1272.   int n;
  1273.   int addr_matched;
  1274.   static int end_cycle;
  1275.  
  1276.   int start;
  1277.   int remain;
  1278.   int offset;
  1279.  
  1280.   static struct line tmp;
  1281.   struct line t;
  1282.   char *rep, *rep_end, *rep_next, *rep_cur;
  1283.  
  1284.   int count;
  1285.   struct vector *restart_vec = vec;
  1286.  
  1287. restart:
  1288.   vec = restart_vec;
  1289.   count = 0;
  1290.  
  1291.   end_cycle = 0;
  1292.  
  1293.   for (cur_cmd = vec->v, n = vec->v_length; n; cur_cmd++, n--)
  1294.     {
  1295.     exe_loop:
  1296.       addr_matched = 0;
  1297.       if (cur_cmd->aflags & A1_MATCHED_BIT)
  1298.     {
  1299.       addr_matched = 1;
  1300.       if (match_address (&(cur_cmd->a2)))
  1301.         cur_cmd->aflags &= ~A1_MATCHED_BIT;
  1302.     }
  1303.       else if (match_address (&(cur_cmd->a1)))
  1304.     {
  1305.       addr_matched = 1;
  1306.       if (cur_cmd->a2.addr_type != addr_is_null)
  1307.         if (   (cur_cmd->a2.addr_type == addr_is_regex)
  1308.         || !match_address (&(cur_cmd->a2)))
  1309.           cur_cmd->aflags |= A1_MATCHED_BIT;
  1310.  
  1311.     }
  1312.       if (cur_cmd->aflags & ADDR_BANG_BIT)
  1313.     addr_matched = !addr_matched;
  1314.       if (!addr_matched)
  1315.     continue;
  1316.       switch (cur_cmd->cmd)
  1317.     {
  1318.     case '{':        /* Execute sub-program */
  1319.       if (cur_cmd->x.sub->v_length)
  1320.         {
  1321.           vec = cur_cmd->x.sub;
  1322.           cur_cmd = vec->v;
  1323.           n = vec->v_length;
  1324.           goto exe_loop;
  1325.         }
  1326.       break;
  1327.  
  1328.     case '}':
  1329.       cur_cmd = vec->return_v->v + vec->return_i;
  1330.       n = vec->return_v->v_length - vec->return_i;
  1331.       vec = vec->return_v;
  1332.       break;
  1333.  
  1334.     case ':':        /* Executing labels is easy. */
  1335.       break;
  1336.  
  1337.     case '=':
  1338.       printf ("%d\n", input_line_number);
  1339.       break;
  1340.  
  1341.     case 'a':
  1342.       while (append.alloc - append.length < cur_cmd->x.cmd_txt.text_len)
  1343.         {
  1344.           append.alloc *= 2;
  1345.           append.text = ck_realloc (append.text, append.alloc);
  1346.         }
  1347.       bcopy (cur_cmd->x.cmd_txt.text,
  1348.          append.text + append.length, cur_cmd->x.cmd_txt.text_len);
  1349.       append.length += cur_cmd->x.cmd_txt.text_len;
  1350.       break;
  1351.  
  1352.     case 'b':
  1353.       if (!cur_cmd->x.jump)
  1354.         end_cycle++;
  1355.       else
  1356.         {
  1357.           struct sed_label *j = cur_cmd->x.jump;
  1358.  
  1359.           n = j->v->v_length - j->v_index;
  1360.           cur_cmd = j->v->v + j->v_index;
  1361.           goto exe_loop;
  1362.         }
  1363.       break;
  1364.  
  1365.     case 'c':
  1366.       line.length = 0;
  1367.       if (!((cur_cmd->aflags & A1_MATCHED_BIT)))
  1368.         ck_fwrite (cur_cmd->x.cmd_txt.text,
  1369.                1, cur_cmd->x.cmd_txt.text_len, stdout);
  1370.       end_cycle++;
  1371.       break;
  1372.  
  1373.     case 'd':
  1374.       line.length = 0;
  1375.       end_cycle++;
  1376.       break;
  1377.  
  1378.     case 'D':
  1379.       {
  1380.         char *tmp;
  1381.         int newlength;
  1382.  
  1383.         tmp = eol_pos (line.text, line.length);
  1384.         newlength = line.length - (tmp - line.text) - 1;
  1385.         if (newlength)
  1386.           {
  1387.         chr_copy (line.text, tmp + 1, newlength);
  1388.         line.length = newlength;
  1389.         goto restart;
  1390.           }
  1391.         line.length = 0;
  1392.         end_cycle++;
  1393.       }
  1394.       break;
  1395.  
  1396.     case 'g':
  1397.       line_copy (&hold, &line);
  1398.       break;
  1399.  
  1400.     case 'G':
  1401.       line_append (&hold, &line);
  1402.       break;
  1403.  
  1404.     case 'h':
  1405.       line_copy (&line, &hold);
  1406.       break;
  1407.  
  1408.     case 'H':
  1409.       line_append (&line, &hold);
  1410.       break;
  1411.  
  1412.     case 'i':
  1413.       ck_fwrite (cur_cmd->x.cmd_txt.text, 1,
  1414.              cur_cmd->x.cmd_txt.text_len, stdout);
  1415.       break;
  1416.  
  1417.     case 'l':
  1418.       {
  1419.         char *tmp;
  1420.         int n;
  1421.         int width = 0;
  1422.  
  1423.         n = line.length;
  1424.         tmp = line.text;
  1425.         while (n--)
  1426.           {
  1427.         /* Skip the trailing newline, if there is one */
  1428.         if (!n && (*tmp == '\n'))
  1429.           break;
  1430.         if (width > 77)
  1431.           {
  1432.             width = 0;
  1433.             putchar ('\n');
  1434.           }
  1435.         if (*tmp == '\\')
  1436.           {
  1437.             printf ("\\\\");
  1438.             width += 2;
  1439.           }
  1440.         else if (isprint (*tmp))
  1441.           {
  1442.             putchar (*tmp);
  1443.             width++;
  1444.           }
  1445.         else
  1446.           switch (*tmp)
  1447.             {
  1448. #if 0
  1449.               /* Should print \00 instead of \0 because (a) POSIX */
  1450.               /* requires it, and (b) this way \01 is unambiguous.  */
  1451.             case '\0':
  1452.               printf ("\\0");
  1453.               width += 2;
  1454.               break;
  1455. #endif
  1456.             case 007:
  1457.               printf ("\\a");
  1458.               width += 2;
  1459.               break;
  1460.             case '\b':
  1461.               printf ("\\b");
  1462.               width += 2;
  1463.               break;
  1464.             case '\f':
  1465.               printf ("\\f");
  1466.               width += 2;
  1467.               break;
  1468.             case '\n':
  1469.               printf ("\\n");
  1470.               width += 2;
  1471.               break;
  1472.             case '\r':
  1473.               printf ("\\r");
  1474.               width += 2;
  1475.               break;
  1476.             case '\t':
  1477.               printf ("\\t");
  1478.               width += 2;
  1479.               break;
  1480.             case '\v':
  1481.               printf ("\\v");
  1482.               width += 2;
  1483.               break;
  1484.             default:
  1485.               printf ("\\%02x", (*tmp) & 0xFF);
  1486.               width += 2;
  1487.               break;
  1488.             }
  1489.         tmp++;
  1490.           }
  1491.         putchar ('\n');
  1492.       }
  1493.       break;
  1494.  
  1495.     case 'n':
  1496.       if (feof (input_file))
  1497.         goto quit;
  1498.       if (!no_default_output)
  1499.         ck_fwrite (line.text, 1, line.length, stdout);
  1500.       read_pattern_space ();
  1501.       break;
  1502.  
  1503.     case 'N':
  1504.       if (feof (input_file))
  1505.         {
  1506.           line.length = 0;
  1507.           goto quit;
  1508.         }
  1509.       append_pattern_space ();
  1510.       break;
  1511.  
  1512.     case 'p':
  1513.       ck_fwrite (line.text, 1, line.length, stdout);
  1514.       break;
  1515.  
  1516.     case 'P':
  1517.       {
  1518.         char *tmp;
  1519.  
  1520.         tmp = eol_pos (line.text, line.length);
  1521.         ck_fwrite (line.text, 1,
  1522.                tmp ? tmp - line.text + 1
  1523.                : line.length, stdout);
  1524.       }
  1525.       break;
  1526.  
  1527.     case 'q':
  1528.     quit:
  1529.       quit_cmd++;
  1530.       end_cycle++;
  1531.       break;
  1532.  
  1533.     case 'r':
  1534.       {
  1535.         int n = 0;
  1536.  
  1537.         if (cur_cmd->x.io_file)
  1538.           {
  1539.         rewind (cur_cmd->x.io_file);
  1540.         do
  1541.           {
  1542.             append.length += n;
  1543.             if (append.length == append.alloc)
  1544.               {
  1545.             append.alloc *= 2;
  1546.             append.text = ck_realloc (append.text, append.alloc);
  1547.               }
  1548.             n = fread (append.text + append.length, sizeof (char),
  1549.                    append.alloc - append.length,
  1550.                    cur_cmd->x.io_file);
  1551.           }
  1552.         while (n > 0);
  1553.         if (ferror (cur_cmd->x.io_file))
  1554.           panic ("Read error on input file to 'r' command");
  1555.           }
  1556.       }
  1557.       break;
  1558.  
  1559.     case 's':
  1560.       {
  1561.         int trail_nl_p = line.text [line.length - 1] == '\n';
  1562.         if (!tmp.alloc)
  1563.           {
  1564.         tmp.alloc = 50;
  1565.         tmp.text = ck_malloc (50);
  1566.           }
  1567.         count = 0;
  1568.         start = 0;
  1569.         remain = line.length - trail_nl_p;
  1570.         tmp.length = 0;
  1571.         rep = cur_cmd->x.cmd_regex.replacement;
  1572.         rep_end = rep + cur_cmd->x.cmd_regex.replace_length;
  1573.         
  1574.         while ((offset = re_search (cur_cmd->x.cmd_regex.regx,
  1575.                     line.text,
  1576.                     line.length - trail_nl_p,
  1577.                     start,
  1578.                     remain,
  1579.                     ®s)) >= 0)
  1580.           {
  1581.         count++;
  1582.         if (offset - start)
  1583.           str_append (&tmp, line.text + start, offset - start);
  1584.         
  1585.         if (cur_cmd->x.cmd_regex.flags & S_NUM_BIT)
  1586.           {
  1587.             if (count != cur_cmd->x.cmd_regex.numb)
  1588.               {
  1589.             int matched = regs.end[0] - regs.start[0];
  1590.             if (!matched) matched = 1;
  1591.             str_append (&tmp, line.text + regs.start[0], matched);
  1592.             start = (offset == regs.end[0]
  1593.                  ? offset + 1 : regs.end[0]);
  1594.             remain = (line.length - trail_nl_p) - start;
  1595.             continue;
  1596.               }
  1597.           }
  1598.         
  1599.         for (rep_next = rep_cur = rep; rep_next < rep_end; rep_next++)
  1600.           {
  1601.             if (*rep_next == '&')
  1602.               {
  1603.             if (rep_next - rep_cur)
  1604.               str_append (&tmp, rep_cur, rep_next - rep_cur);
  1605.             str_append (&tmp, line.text + regs.start[0], regs.end[0] - regs.start[0]);
  1606.             rep_cur = rep_next + 1;
  1607.               }
  1608.             else if (*rep_next == '\\')
  1609.               {
  1610.             if (rep_next - rep_cur)
  1611.               str_append (&tmp, rep_cur, rep_next - rep_cur);
  1612.             rep_next++;
  1613.             if (rep_next != rep_end)
  1614.               {
  1615.                 int n;
  1616.                 
  1617.                 if (*rep_next >= '0' && *rep_next <= '9')
  1618.                   {
  1619.                 n = *rep_next - '0';
  1620.                 str_append (&tmp, line.text + regs.start[n], regs.end[n] - regs.start[n]);
  1621.                   }
  1622.                 else
  1623.                   str_append (&tmp, rep_next, 1);
  1624.               }
  1625.             rep_cur = rep_next + 1;
  1626.               }
  1627.           }
  1628.         if (rep_next - rep_cur)
  1629.           str_append (&tmp, rep_cur, rep_next - rep_cur);
  1630.         if (offset == regs.end[0])
  1631.           {
  1632.             str_append (&tmp, line.text + offset, 1);
  1633.             ++regs.end[0];
  1634.           }
  1635.         start = regs.end[0];
  1636.         
  1637.         remain = (line.length - trail_nl_p) - start;
  1638.         if (remain < 0)
  1639.           break;
  1640.         if (!(cur_cmd->x.cmd_regex.flags & S_GLOBAL_BIT))
  1641.           break;
  1642.           }
  1643.         if (!count)
  1644.           break;
  1645.         replaced = 1;
  1646.         str_append (&tmp, line.text + start, remain + trail_nl_p);
  1647.         t.text = line.text;
  1648.         t.length = line.length;
  1649.         t.alloc = line.alloc;
  1650.         line.text = tmp.text;
  1651.         line.length = tmp.length;
  1652.         line.alloc = tmp.alloc;
  1653.         tmp.text = t.text;
  1654.         tmp.length = t.length;
  1655.         tmp.alloc = t.alloc;
  1656.         if ((cur_cmd->x.cmd_regex.flags & S_WRITE_BIT)
  1657.         && cur_cmd->x.cmd_regex.wio_file)
  1658.           ck_fwrite (line.text, 1, line.length,
  1659.              cur_cmd->x.cmd_regex.wio_file);
  1660.         if (cur_cmd->x.cmd_regex.flags & S_PRINT_BIT)
  1661.           ck_fwrite (line.text, 1, line.length, stdout);
  1662.         break;
  1663.       }
  1664.         
  1665.     case 't':
  1666.       if (replaced)
  1667.         {
  1668.           replaced = 0;
  1669.           if (!cur_cmd->x.jump)
  1670.         end_cycle++;
  1671.           else
  1672.         {
  1673.           struct sed_label *j = cur_cmd->x.jump;
  1674.  
  1675.           n = j->v->v_length - j->v_index;
  1676.           cur_cmd = j->v->v + j->v_index;
  1677.           goto exe_loop;
  1678.         }
  1679.         }
  1680.       break;
  1681.  
  1682.     case 'w':
  1683.       if (cur_cmd->x.io_file)
  1684.         ck_fwrite (line.text, 1, line.length, cur_cmd->x.io_file);
  1685.       break;
  1686.  
  1687.     case 'x':
  1688.       {
  1689.         struct line tmp;
  1690.  
  1691.         tmp = line;
  1692.         line = hold;
  1693.         hold = tmp;
  1694.       }
  1695.       break;
  1696.  
  1697.     case 'y':
  1698.       {
  1699.         unsigned char *p, *e;
  1700.  
  1701.         for (p = (unsigned char *) (line.text), e = p + line.length;
  1702.          p < e;
  1703.          p++)
  1704.           *p = cur_cmd->x.translate[*p];
  1705.       }
  1706.       break;
  1707.  
  1708.     default:
  1709.       panic ("INTERNAL ERROR: Bad cmd %c", cur_cmd->cmd);
  1710.     }
  1711.       if (end_cycle)
  1712.     break;
  1713.     }
  1714. }
  1715.  
  1716.  
  1717. /* Return non-zero if the current line matches the address
  1718.    pointed to by 'addr'. */
  1719. int
  1720. match_address (addr)
  1721.      struct addr *addr;
  1722. {
  1723.   switch (addr->addr_type)
  1724.     {
  1725.     case addr_is_null:
  1726.       return 1;
  1727.     case addr_is_num:
  1728.       return (input_line_number == addr->addr_number);
  1729.  
  1730.     case addr_is_regex:
  1731.       {
  1732.     int trail_nl_p = line.text [line.length - 1] == '\n';
  1733.     return (re_search (addr->addr_regex,
  1734.                line.text,
  1735.                line.length - trail_nl_p,
  1736.                0,
  1737.                line.length - trail_nl_p,
  1738.                (struct re_registers *) 0) >= 0) ? 1 : 0;
  1739.       }
  1740.     case addr_is_last:
  1741.       return (input_EOF) ? 1 : 0;
  1742.  
  1743.     default:
  1744.       panic ("INTERNAL ERROR: bad address type");
  1745.       break;
  1746.     }
  1747.   return -1;
  1748. }
  1749.  
  1750. /* Read in the next line of input, and store it in the
  1751.    pattern space.  Return non-zero if this is the last line of input */
  1752.  
  1753. int
  1754. read_pattern_space ()
  1755. {
  1756.   int n;
  1757.   char *p;
  1758.   int ch;
  1759.  
  1760.   p = line.text;
  1761.   n = line.alloc;
  1762.  
  1763.   if (feof (input_file))
  1764.     return 0;
  1765.   input_line_number++;
  1766.   replaced = 0;
  1767.   for (;;)
  1768.     {
  1769.       if (n == 0)
  1770.     {
  1771.       line.text = ck_realloc (line.text, line.alloc * 2);
  1772.       p = line.text + line.alloc;
  1773.       n = line.alloc;
  1774.       line.alloc *= 2;
  1775.     }
  1776.       ch = getc (input_file);
  1777.       if (ch == EOF)
  1778.     {
  1779.       if (n == line.alloc)
  1780.         return 0;
  1781.       /* *p++ = '\n'; */
  1782.       /* --n; */
  1783.       line.length = line.alloc - n;
  1784.       if (last_input_file)
  1785.         input_EOF++;
  1786.       return 1;
  1787.     }
  1788.       *p++ = ch;
  1789.       --n;
  1790.       if (ch == '\n')
  1791.     {
  1792.       line.length = line.alloc - n;
  1793.       break;
  1794.     }
  1795.     }
  1796.   ch = getc (input_file);
  1797.   if (ch != EOF)
  1798.     ungetc (ch, input_file);
  1799.   else if (last_input_file)
  1800.     input_EOF++;
  1801.   return 1;
  1802. }
  1803.  
  1804. /* Inplement the 'N' command, which appends the next line of input to
  1805.    the pattern space. */
  1806. void
  1807. append_pattern_space ()
  1808. {
  1809.   char *p;
  1810.   int n;
  1811.   int ch;
  1812.  
  1813.   p = line.text + line.length;
  1814.   n = line.alloc - line.length;
  1815.  
  1816.   input_line_number++;
  1817.   replaced = 0;
  1818.   for (;;)
  1819.     {
  1820.       ch = getc (input_file);
  1821.       if (ch == EOF)
  1822.     {
  1823.       if (n == line.alloc)
  1824.         return;
  1825.       /* *p++ = '\n'; */
  1826.       /* --n; */
  1827.       line.length = line.alloc - n;
  1828.       if (last_input_file)
  1829.         input_EOF++;
  1830.       return;
  1831.     }
  1832.       if (n == 0)
  1833.     {
  1834.       line.text = ck_realloc (line.text, line.alloc * 2);
  1835.       p = line.text + line.alloc;
  1836.       n = line.alloc;
  1837.       line.alloc *= 2;
  1838.     }
  1839.       *p++ = ch;
  1840.       --n;
  1841.       if (ch == '\n')
  1842.     {
  1843.       line.length = line.alloc - n;
  1844.       break;
  1845.     }
  1846.     }
  1847.   ch = getc (input_file);
  1848.   if (ch != EOF)
  1849.     ungetc (ch, input_file);
  1850.   else if (last_input_file)
  1851.     input_EOF++;
  1852. }
  1853.  
  1854. /* Copy the contents of the line 'from' into the line 'to'.
  1855.    This destroys the old contents of 'to'.  It will still work
  1856.    if the line 'from' contains nulls. */
  1857. void
  1858. line_copy (from, to)
  1859.      struct line *from, *to;
  1860. {
  1861.   if (from->length > to->alloc)
  1862.     {
  1863.       to->alloc = from->length;
  1864.       to->text = ck_realloc (to->text, to->alloc);
  1865.     }
  1866.   bcopy (from->text, to->text, from->length);
  1867.   to->length = from->length;
  1868. }
  1869.  
  1870. /* Append the contents of the line 'from' to the line 'to'.
  1871.    This routine will work even if the line 'from' contains nulls */
  1872. void
  1873. line_append (from, to)
  1874.      struct line *from, *to;
  1875. {
  1876.   if (from->length > (to->alloc - to->length))
  1877.     {
  1878.       to->alloc += from->length;
  1879.       to->text = ck_realloc (to->text, to->alloc);
  1880.     }
  1881.   bcopy (from->text, to->text + to->length, from->length);
  1882.   to->length += from->length;
  1883. }
  1884.  
  1885. /* Append 'length' bytes from 'string' to the line 'to'
  1886.    This routine *will* append bytes with nulls in them, without
  1887.    failing. */
  1888. void
  1889. str_append (to, string, length)
  1890.      struct line *to;
  1891.      char *string;
  1892.      int length;
  1893. {
  1894.   if (length > to->alloc - to->length)
  1895.     {
  1896.       to->alloc += length;
  1897.       to->text = ck_realloc (to->text, to->alloc);
  1898.     }
  1899.   bcopy (string, to->text + to->length, length);
  1900.   to->length += length;
  1901. }
  1902.  
  1903. void
  1904. usage (status)
  1905.      int status;
  1906. {
  1907.   fprintf (status ? stderr : stdout, "\
  1908. Usage: %s [-nV] [--quiet] [--silent] [--version] [-e script]\n\
  1909.         [-f script-file] [--expression=script] [--file=script-file] [file...]\n",
  1910.        myname);
  1911.   exit (status);
  1912. }
  1913.